home *** CD-ROM | disk | FTP | other *** search
- ;Startup script: Automatically executed when Virtuoso is started.
- ;The commands contained here are for a Kantronics TNC.
- ;Make sure TNC is in command mode, send a control-C character.
- TYPE("^C")
- ;Make sure TNC is in first channel.
- TYPE("|A")
- ;Send XON character so TNC will send us stuff.
- TYPE("^Q")
- ;Send a couple of return characters for good measure
- TYPE("^M^M")
- ;Change the CTEXT so people connecting will know I am how here.
- TYPE("CTEXT Greetings! I'm near the keyboard...^M")
- ;Allow the CTEXT message to be sent when someone connects.
- TYPE("CMSG ON^M")
- ;Turn on monitoring
- TYPE("MONITOR ON^M")
- ;Send one return character for good measure
- TYPE("^M")
- ;Going to set the TNC's clock. Command is DAYT YYMMDDHHMMSS
- ;Send the DAYT part
- TYPE("DAYT ")
- ;Wait for the TNC to catch up with us
- PAUSE(40)
- ;Send the YYMMDDHHMMSS part of the command
- DAYT
- ;Wait for the TNC to catch up with us
- PAUSE(5)
- ;Hit return to enter the command
- TYPE("^M")
- ;Find out who was last heard on the channel
- TYPE("MHEARD L^M")
- END.